home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Language/OS - Multiplatform Resource Library
/
LANGUAGE OS.iso
/
cpp_libs
/
answrbok
/
5_11.lha
/
5_11
/
5_11f.c
< prev
next >
Wrap
Text File
|
1993-08-08
|
304b
|
17 lines
* Copyright (c) 1990 by AT&T Bell Telephone Laboratories, Incorporated. */
* The C++ Answer Book */
* Tony Hansen */
* All rights reserved. */
/ Print the expression list
oid expr::print()
for (tree *nhead = head; ; )
{
infixprint(nhead);
nhead = nhead->next;
if (!nhead)
break;
cout << "; ";
}